home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / INTRCPT.H < prev    next >
Encoding:
Text File  |  1995-07-19  |  385 b   |  13 lines

  1. //==================================
  2. // APISPY32 - Matt Pietrek 1995
  3. // FILE: INTRCPT.H
  4. //==================================
  5. BOOL InterceptFunctionsInModule(PVOID baseAddress);
  6.  
  7. BOOL AddAPIFunction
  8. (
  9.     PSTR pszModule,     // exporting DLL name
  10.     PSTR pszFuncName,   // exported function name
  11.     PBYTE params        // opcode encoded parameters of exported function
  12. );
  13.